From 25cc9bc4716cec1d055f3b660501e3a6372c4bae Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild2.aw" Date: Tue, 6 Feb 2007 15:08:09 -0700 Subject: [PATCH] [IA64] Don't complain about PAL_LOGICAL_TO_PHYSICAL It's optional Signed-off-by: Alex Williamson --- xen/arch/ia64/xen/fw_emul.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xen/arch/ia64/xen/fw_emul.c b/xen/arch/ia64/xen/fw_emul.c index 905d29c6fd..60f955ff79 100644 --- a/xen/arch/ia64/xen/fw_emul.c +++ b/xen/arch/ia64/xen/fw_emul.c @@ -625,6 +625,9 @@ xen_pal_emulator(unsigned long index, u64 in1, u64 in2, u64 in3) if (VMX_DOMAIN(current)) status = PAL_STATUS_SUCCESS; break; + case PAL_LOGICAL_TO_PHYSICAL: + /* Optional, no need to complain about being unimplemented */ + break; default: printk("xen_pal_emulator: UNIMPLEMENTED PAL CALL %lu!!!!\n", index); -- 2.30.2